using System;
class rohit
{
    public static void Main()
    {
        int[] a = new int[5] { 10, 20, 30, 40, 50 };
        int[] b = a;

        Console.WriteLine("Content in 1st row");
        for (int j = 0; j < a.Length; j++)
        {
            Console.Write(a[j] + "  ");
        }

        Console.WriteLine("\nCopy content in second row");
        for (int i = 0; i < b.Length; i++)
        {
            Console.Write(b[i] + "  ");
        }
        Console.ReadLine();
    }
}